home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / Anwendun / Pov / POVTOOLS / MACHINE / IBMPC / DJGCC / PUTDJC.BAT < prev   
Encoding:
DOS Batch File  |  1995-11-25  |  508 b   |  21 lines

  1. @echo off
  2. rem
  3. rem
  4. if not "%1" == "" goto NotEmpty
  5. echo This batch file copies all files for compiling POV-Ray with DJGCC
  6. echo to a working directory you specify.
  7. echo For example: "PUTDJC C:\POVWORK" copies files to the C:\POVWORK directory.
  8. goto Done
  9. :NotEmpty
  10. if not exist %1\nul echo Directory %1 doesn't exist!
  11. if not exist %1\nul goto Done
  12. rem
  13. rem
  14. echo on
  15. copy ibmgcc*.* %1
  16. copy ..\ibm.c %1
  17. copy ..\ibmconf.h %1\config.h
  18. copy ..\..\..\source\*.c %1
  19. copy ..\..\..\source\*.h %1
  20. :done
  21.